.contactPage{
    margin: 0px;
    padding: 0px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.contactcontainer{
    margin-top: 65px;
    padding: 2px;
    width: 100%;
    height: 100vh;
    background-color: #222;
    display: flex;
    justify-content:space-around;
    align-items: center;

    
}
.contactcontainer .cbox{
    width: 30%;
    height:85%;
    background:transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: 2px solid #fff;
    border-radius: 20px;
    /* box-shadow: 0 0 5px #fff ,
     0 0 10px #fff, 0 0 10px #fff ,
      0 0 10px #fff, 0 0 10px #fff; */
}
.contactcontainer .cbox:hover{
    box-shadow: 0 0 5px #fff ,
     0 0 20px #fff, 0 0 20px #fff ,
      0 0 20px #fff, 0 0 20px #fff;
      transition:linear;
}
.cbox .info h3{
    color: blue;
    text-align:start;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding: 0px 5px ;
}
.cbox .info p{
    padding: 0px 5px;
    font-size: 18px;
    text-align:left;
    text-transform: capitalize;
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 20px;
    color: #fff;
}
.cbox .info .tags{
    padding: 0px 50px;
    font-size: 25px;
    display: flex;
    justify-content: space-between;
       
}
.cbox .info .tags a{
    background-color:#fff;
    padding: 10px;
    color: #222;
    border: 2px solid #222;
    border-radius: 40% 40% ;
}
.cbox .info .tags a:hover{
    color: #0000ff;
    padding: 12px;
    box-shadow: 0 0 10px #0000ff,
    0 0 10px #0000ff,0 0 5px #0000ff ;
}
/* the end of first box */

.contactcontainer .cbox2{
    width: 30%;
    height:85%;
    border: 2px solid #fff;
    border-radius: 20px;
    color: #fff;
}
.contactcontainer .cbox2:hover{
    box-shadow: 0 0 5px #fff ,
    0 0 20px #fff, 0 0 20px #fff ,
     0 0 20px #fff, 0 0 20px #fff;
     transition:linear;   
}
.cbox2{
    padding: 10px;
}
.cbox2 .cheading{
    padding: 20px 0px;
    text-transform: capitalize;
    color: #0000ff;

}
.cbox2 .contactform label{
    padding: 40px 0px;
    margin: 40px 0px;
    
}
.cbox2 .contactform input[name="name"],input[name="companyname"]{
    padding: 20px 2px;
    background-color: #fff;
    width: 80%;
    height: 30px;
    border: 2px solid #222;
    margin-bottom: 30px;
    margin-right: 20px;
    border-radius: 6px;
    box-shadow: 2px #fff ,2px #fff ,2px #fff ,;   
}
.cbox2 .contactform input[class="text"]{
    margin-left: 4px;
    margin-bottom: 30px;
    padding: 20pxx 10px;
    width: 180px;
    height: 40px;
   border: 2px silod #222;
   border-radius: 6px;

}

.cbox2 .contactform textarea{
   width: 95%;
   height: 100px;
   margin-left: 10px;
   border: 2px solid #222;
    font-size: 15px;
    border-radius: 6px;
}
.cbox2 .contactform input[type="submit"]{
    margin-top: 6px;
    margin-left: 15%;
    padding: 20px 100px;
    background-color:#0000ff;
    font-size: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 600;
    border-radius: 6px;
}
.cbox2 .contactform input[type="submit"]:hover{
    background-color: #0000ff;
    color: #fff;
    border-color: #fff;
    cursor: pointer;

}
@media(max-width: 768px){
 .contactcontainer{
    flex-direction: column;
    height: auto;
    padding: 10px;
 }   
 .contactcontainer .cbox , .contactcontainer .cbox2{
    width: 90%;
    margin-bottom: 20px;
 }
 .cbox .info h3{
    font-size: 24px;
 }
 .cbox .info p , .cbox2 .contactform label,
 .cbox2 .contactform input[name="name"],
 .cbox2 .contactform input[class="text"],
 .cbox2 .contactform textarea {
    font-size: 16px;
 }
 .cbox2 .contactform input[type="submit"]{
    width: 80%;
    padding: 10px;
    margin-left: 40px;
    
 }
 .cbox .info .tags{
    flex-direction: column;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;

 }
 .cbox .info .tags a{
    margin-bottom: 10px;
    width: 25%;
    text-align: center;
    justify-content: center;

 }
}
.footer{
    background-color: #222;
    color: #fff;
    display: flex;
    justify-content: center;
    font-size: 10px;

}
@media(max-width:768px){
    .footer{
    font-size:8px;
    text-transform: capitalize;
}
}